home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / capturing / hacktv / globals.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  757 b   |  32 lines

  1. /*
  2.     File:        Globals.c
  3.  
  4.     Contains:    HackTV application globals
  5.             
  6.     Copyright:    © 1992-1998 by Apple Computer, Inc.
  7. */
  8.  
  9. #include <QTML.h>
  10. #include <Menus.h>
  11. #include <Printing.h>
  12. #include <QuickTimeComponents.h>
  13.  
  14. //-----------------------------------------------------------------------
  15. // Globals
  16.  
  17. Boolean                    gQuitFlag = 0;
  18. SeqGrabComponent        gSeqGrabber=0;
  19. SGChannel                gVideoChannel=0;
  20. SGChannel                gSoundChannel=0;
  21. WindowPtr                gMonitor=0;
  22. Rect                    gActiveVideoRect;
  23. PicHandle                gMonitorPICT=0;
  24. Boolean                    gFullSize;
  25. Boolean                    gHalfSize;
  26. Boolean                    gQuarterSize;
  27. THPrint                    gPrintRec;
  28. ICMAlignmentProcRecord    gSeqGrabberAlignProc;
  29. Boolean                    gRecordVideo = 1;
  30. Boolean                    gRecordSound = 1;
  31. Boolean                    gSplitTracks = 0;
  32.